home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Swap File Usage.xpl < prev    next >
Text File  |  2001-02-11  |  1KB  |  46 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="System\Memory"
  5. "NAME"="Swap File Usage"
  6. "OSVERSION"="00101"
  7. "VERSION"="1.2"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Use maximum available physical RAM before using a swap file"
  10. "DESCRIPTION 1"="Enabling this option will make Windows use the maximum amount of physical RAM before using Virtual Memory. Because RAM is faster than a Virtual Memory swap file, Windows should run faster with this option enabled."
  11. "DESCRIPTION 2"="NOTE #1: You need a lot of physical RAM available for this to work correctly - 128Mb of RAM is the recommended minimum, though some users notice an impovement on machines with less RAM."
  12. "DESCRIPTION 3"="NOTE #2: This option will only work under Windows 98 or Windows Me.
  13. "AUTHOR"="Ojatex@aol.com"
  14. "CONTACTURL"="http://members.aol.com/ojatex/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="Thanks to CptSiskoX [CptSiskoX@mailandnews.com] for the idea."
  17. "COMMENT 2"="Thanks to Neil R. Turner [totalxs@hotmail.com] for the update."
  18.  
  19. sf="SYSTEM.INI"
  20. ss="386Enh"
  21. v1="ConservativeSwapfileUsage"
  22.  
  23. Sub Plugin_Initialize 
  24.  i=IniReadValue(sf,ss,v1)
  25.  if i="1" then
  26.   Call SetUIElement(1,true)
  27.  end if
  28. End Sub
  29.  
  30. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  31.  i=GetUIElement(1)
  32.  if i=true then
  33.   Call IniWriteValue(sf,ss,v1,"1")
  34.  else
  35.   Call IniWriteValue(sf,ss,v1,"0")
  36.  end if
  37.  
  38.  Call Restart()
  39. End Sub
  40.  
  41. Sub Plugin_Terminate 
  42. End Sub
  43.  
  44.  
  45.  
  46.